fc557d43c0c0f3d2d40f52d436fb141d64b60fd4,language/thingml/xtend-gen/org/thingml/xtext/scoping/ThingMLScopeProvider.java,ThingMLScopeProvider,scopeForSendAction_Port,#SendAction#,276
Before Change
}
protected IScope scopeForSendAction_Port(final SendAction context) {
Thing _findContainingThing = ThingMLHelpers.findContainingThing(context);
ArrayList<Port> _allPorts = ThingMLHelpers.allPorts(_findContainingThing);
return Scopes.scopeFor(_allPorts);
}
protected IScope scopeForSendAction_Message(final SendAction context) {
After Change
}
protected IScope scopeForSendAction_Port(final SendAction context) {
return Scopes.scopeFor(ThingMLHelpers.allPorts(ThingMLHelpers.findContainingThing(context)));
}
protected IScope scopeForSendAction_Message(final SendAction context) {